home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinHelp Options.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  52 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Built in Windows Apps\Windows Help"
  5. "NAME"="WinHelp CTRL Keys"
  6. "VERSION"="1.43"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Activate CTRL+SHIFT moving through helpfiles"
  9. "DESCRIPTION 1"="Activating this option allows you to move through every help file by pressing CTRL+SHIFT+CURSOR LEFT or CTRL+SHIFT+CURSOR RIGHT."
  10. "DESCRIPTION 2"="NOTE: This option only applies for WinHelp not the new HTMLHelp (*.CHM)."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"=" "
  16. "COMMENT 3"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
  17. "COMMENT 4"="Thanks to CptSiskoX for his help!"
  18.  
  19.  
  20. sV1="HKEY_CURRENT_USER\Software\Microsoft\Windows Help\SeqTopicKeys"
  21.  
  22. Sub Plugin_Initialize 
  23.  i=IniReadValue("WIN.INI","Windows Help","SeqTopicKeys")
  24.  If IsEmpty(i) then
  25.     i=RegReadValue(sV1)
  26.  end if
  27.  
  28.  if i=1 then
  29.     SetUIElement 1,true 
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  if b=true then
  39.     Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","1")
  40.     Call RegWriteValue(sV1,"1",1)
  41.  else
  42.     Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","0")
  43.     Call RegWriteValue(sV1,"0",1)
  44.  end if
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.  
  50.  
  51.  
  52.